home *** CD-ROM | disk | FTP | other *** search
/ Click Press Kit / Click Press Kit.iso / pc / main.dxr / Internal_43_animation.ls < prev    next >
Encoding:
Text File  |  2006-05-31  |  392 b   |  21 lines

  1. global gDur, gSound, gMediaType, gManager
  2.  
  3. on exitFrame me
  4.   case gMediaType of
  5.     #quickTimeMedia:
  6.       if sprite(1).movieTime >= gDur then
  7.         gSound.mPlaySound()
  8.         go("main")
  9.       else
  10.         go(the frame)
  11.       end if
  12.     #flash:
  13.       if not sprite(1).playing then
  14.         gSound.mPlaySound()
  15.         go("main")
  16.       else
  17.         go(the frame)
  18.       end if
  19.   end case
  20. end
  21.